home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / dos.swg / 0036_SAFEBOOT with FLUSH.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-11-02  |  325 b   |  23 lines

  1. {
  2. From: CHRIS PRIEDE
  3. Subj: Rebooting...
  4.  
  5. issue DOS Flush Buffers call AND reboot }
  6.  
  7. procedure SafeReboot; far; assembler;
  8. asm
  9.   mov   ah, 0Dh
  10.   int   21h
  11.   xor   cx, cx
  12. @1:
  13.   push  cx
  14.   int   28h
  15.   pop   cx
  16.   loop  @1
  17.   mov   ds, cx
  18.   mov   word ptr [472h], 1234h
  19.   dec   cx
  20.   push  cx
  21.   push  ds
  22. end;
  23.